The following constants specify fill types for paths. For more information about fill types, see "Shape Fill" .
/* fill types */
enum {
gxNoFill = 0,
gxOpenFrameFill = 1,
gxFrameFill = gxOpenFrameFill,
gxClosedFrameFill = 2,
gxHollowFill = gxClosedFrameFill,
gxEvenOddFill = 3,
gxSolidFill = gxEvenOddFill,
gxWindingFill = 4,
gxInverseEvenOddFill = 5,
gxInverseSolidFill = gxInverseEvenOddFill,
gxInverseFill = gxInverseEvenOddFill,
gxInverseWindingFill = 6
};